home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / RKMLibsPrgs / utility / tag1.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  5KB  |  124 lines

  1. ;/* tag1.c - Execute me to compile me with SAS C 5.10
  2. LC -b1 -cfis -j73 tag1.c
  3. Blink FROM LIB:c.o,tag1.o TO tag1 LIBRARY LIB:LC.lib,LIB:Amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.  
  33. #include <exec/types.h>
  34. #include <exec/libraries.h>
  35. #include <utility/tagitem.h>
  36. #include <intuition/intuition.h>
  37. #include <clib/exec_protos.h>
  38. #include <clib/intuition_protos.h>
  39. #include <clib/utility_protos.h>
  40.  
  41. extern struct Library *SysBase;
  42. struct Library *IntuitionBase, *UtilityBase;
  43.  
  44. int main (int argc, char **argv)
  45. {
  46.     struct TagItem *tags;
  47.     struct Window  *win;
  48.  
  49.     /* For this example we need Version 2.0 */
  50.     if (IntuitionBase = OpenLibrary ("intuition.library", 37))
  51.     {
  52.         /* We need the utility library for this example */
  53.         if (UtilityBase = OpenLibrary ("utility.library", 37))
  54.         {
  55.  
  56.         /****************************************************************/
  57.         /* This section allocates a tag array, fills it in with values, */
  58.         /* and then uses it.                                            */
  59.         /****************************************************************/
  60.  
  61.             /* Allocate a tag array */
  62.             if (tags = AllocateTagItems (7))
  63.             {
  64.                 /* Fill in our tag array */
  65.                 tags[0].ti_Tag = WA_Width;
  66.                 tags[0].ti_Data = 320;
  67.                 tags[1].ti_Tag = WA_Height;
  68.                 tags[1].ti_Data = 50;
  69.                 tags[2].ti_Tag = WA_Title;
  70.                 tags[2].ti_Data = (ULONG) "RKM Tag Example 1";
  71.                 tags[3].ti_Tag = WA_IDCMP;
  72.                 tags[3].ti_Data = IDCMP_CLOSEWINDOW;
  73.                 tags[4].ti_Tag = WA_CloseGadget;
  74.                 tags[4].ti_Data = TRUE;
  75.                 tags[5].ti_Tag = WA_DragBar;
  76.                 tags[5].ti_Data = TRUE;
  77.                 tags[6].ti_Tag = TAG_DONE;
  78.  
  79.                 /* Open the window, using the tag attributes as the
  80.                  * only description. */
  81.                 if (win = OpenWindowTagList (NULL, tags))
  82.                 {
  83.                     /* Wait for an event to occur */
  84.                     WaitPort (win->UserPort);
  85.  
  86.                     /* Close the window now that we're done with it */
  87.                     CloseWindow (win);
  88.                 }
  89.  
  90.                 /* Free the tag list now that we're done with it */
  91.                 FreeTagItems(tags);
  92.             }
  93.  
  94.         /****************************************************************/
  95.         /* This section builds the tag array on the stack, and passes   */
  96.         /* the array to a function.                                     */
  97.         /****************************************************************/
  98.  
  99.             /* Now use the VarArgs (or stack based) version. */
  100.             if (win = OpenWindowTags ( NULL,
  101.                                        WA_Width, 320,
  102.                                        WA_Height, 50,
  103.                                        WA_Title, (ULONG)"RKM Tag Example 1",
  104.                                        WA_IDCMP, IDCMP_CLOSEWINDOW,
  105.                                        WA_CloseGadget, TRUE,
  106.                                        WA_DragBar, TRUE,
  107.                                        TAG_DONE))
  108.             {
  109.                 /* Wait for an event to occur */
  110.                 WaitPort (win->UserPort);
  111.  
  112.                 /* Close the window now that we're done with it */
  113.                 CloseWindow (win);
  114.             }
  115.  
  116.             /* Close the library now */
  117.             CloseLibrary (UtilityBase);
  118.         }
  119.  
  120.         /* Close the library now that we're done with it */
  121.         CloseLibrary (IntuitionBase);
  122.     }
  123. }
  124.